projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
10e8630
)
(gud-dbx-marker-filter): Detect signals as well as bpts.
author
Richard M. Stallman
<rms@gnu.org>
Mon, 9 Aug 1993 04:36:47 +0000
(
04:36
+0000)
committer
Richard M. Stallman
<rms@gnu.org>
Mon, 9 Aug 1993 04:36:47 +0000
(
04:36
+0000)
lisp/gud.el
patch
|
blob
|
history
diff --git
a/lisp/gud.el
b/lisp/gud.el
index 4fa2a7f31cffddfb1feb7f8080e88fc1c2c7941a..2138e0d4b421a820fd4fb4a016de761f9e5b70b4 100644
(file)
--- a/
lisp/gud.el
+++ b/
lisp/gud.el
@@
-337,8
+337,12
@@
and source-file directory for your debugger."
(cons file args))
(defun gud-dbx-marker-filter (string)
- (if (string-match
- "stopped in .* at line \\([0-9]*\\) in file \"\\([^\"]*\\)\"" string)
+ (if (or (string-match
+ "stopped in .* at line \\([0-9]*\\) in file \"\\([^\"]*\\)\""
+ string)
+ (string-match
+ "signal .* in .* at line \\([0-9]*\\) in file \"\\([^\"]*\\)\""
+ string))
(setq gud-last-frame
(cons
(substring string (match-beginning 2) (match-end 2))